home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / Organization / Any Calendar / background_3657.txt < prev    next >
Text File  |  1991-01-15  |  23KB  |  744 lines

  1. -- background: 3657 from stack: in
  2. -- bmap block id: 4158
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6. ----- HyperTalk script -----
  7. on openbackground
  8.   set userlevel to 2
  9.   hide menubar
  10. end openbackground
  11.  
  12.  
  13.  
  14. -- part 5 (field)
  15. -- low flags: 00
  16. -- high flags: 0002
  17. -- rect: left=131 top=12 right=42 bottom=224
  18. -- title width / last selected line: 0
  19. -- icon id / first selected line: 0 / 0
  20. -- text alignment: 1
  21. -- font id: 14
  22. -- text size: 24
  23. -- style flags: 256
  24. -- line height: 32
  25. -- part name: year
  26.  
  27.  
  28. -- part 6 (button)
  29. -- low flags: 00
  30. -- high flags: A003
  31. -- rect: left=406 top=12 right=44 bottom=508
  32. -- title width / last selected line: 0
  33. -- icon id / first selected line: 0 / 0
  34. -- text alignment: 1
  35. -- font id: 0
  36. -- text size: 12
  37. -- style flags: 0
  38. -- line height: 16
  39. -- part name: Calendar
  40. ----- HyperTalk script -----
  41. on mouseUp
  42.   if background field year is empty then
  43.     answer "PLEASE ENTER THE YEAR FIRST!" with "OK"
  44.     click at loc of background field year
  45.   else
  46.     -- Clean Up
  47.     get background field year
  48.     put it into yearvar
  49.     visual effect wipe left slowly
  50.     go to card months1
  51.     put empty into background field month1
  52.     put empty into background field month2
  53.     put empty into background field month3
  54.     put empty into background field month4
  55.     put empty into background field month5
  56.     put empty into background field month6
  57.     put yearvar into background field year
  58.     -- Figure out beginning of year
  59.     put abs (yearvar - 2000) into difference
  60.     put ((difference DIV 4) - (difference DIV 100)) into leapyears
  61.     put (leapyears + (difference DIV 400) + 1) into leapyears
  62.     put 7 into firstyear
  63.     if yearvar > 2000 then
  64.       put (7 + difference + leapyears) into firstyear
  65.       repeat while firstyear > 7
  66.         put firstyear - 7 into firstyear
  67.       end repeat
  68.     else
  69.       if yearvar < 2000 then
  70.         put (7 - difference -leapyears + 1) into firstyear
  71.         repeat while firstyear < 1
  72.           put firstyear + 7 into firstyear
  73.         end repeat
  74.       end if
  75.     end if
  76.     -- Put months
  77.     -- January
  78.     put 31 into daysmonth
  79.     put firstyear into firstmonth
  80.     put firstmonth into firstmonth2
  81.     repeat while firstmonth > 7
  82.       put (firstmonth - 7) into firstmonth
  83.     end repeat
  84.     put 1 into hloc
  85.     put 1 into daycount
  86.     put 1 into row
  87.     repeat while daycount < (daysmonth + 1)
  88.       repeat while hloc < firstmonth
  89.         get line row of background field month1
  90.         put it into temp
  91.         if hloc = 1 then
  92.           put temp & "  " into line row of background field month1
  93.         else
  94.           put temp & "   " into line row of background field month1
  95.         end if
  96.         put (1 + hloc) into hloc
  97.       end repeat
  98.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  99.         get line row of background field month1
  100.         put it into temp
  101.         if hloc = 1 then
  102.           if daycount < 10 then
  103.             put temp & " " & daycount into line row of background field month1
  104.           else
  105.             put temp & daycount into line row of background field month1
  106.           end if
  107.         else
  108.           if daycount < 10 then
  109.             put temp & "  " & daycount into line row of background field month1
  110.           else
  111.             put temp & " " & daycount into line row of background field month1
  112.           end if
  113.         end if
  114.         put (daycount + 1) into daycount
  115.         put (hloc + 1) into hloc
  116.       end repeat
  117.       put 1 into hloc
  118.       put (1 + row) into row
  119.       put 0 into firstmonth
  120.     end repeat
  121.     -- February
  122.     put (firstmonth2 + 31) into firstmonth
  123.     put firstmonth into firstmonth2
  124.     if (yearvar MOD 4) = 0 then
  125.       if (yearvar MOD 100) = 0 then
  126.         if (yearvar MOD 400) = 0 then
  127.           put 29 into daysmonth
  128.         else
  129.           put 28 into daysmonth
  130.         end if
  131.       else
  132.         put 29 into daysmonth
  133.       end if
  134.     else
  135.       put 28 into daysmonth
  136.     end if
  137.     repeat while firstmonth > 7
  138.       put (firstmonth - 7) into firstmonth
  139.     end repeat
  140.     put 1 into hloc
  141.     put 1 into daycount
  142.     put 1 into row
  143.     repeat while daycount < (daysmonth + 1)
  144.       repeat while hloc < firstmonth
  145.         get line row of background field month2
  146.         put it into temp
  147.         if hloc = 1 then
  148.           put temp & "  " into line row of background field month2        else
  149.           put temp & "   " into line row of background field month2
  150.         end if
  151.         put (1 + hloc) into hloc
  152.       end repeat
  153.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  154.         get line row of background field month2
  155.         put it into temp
  156.         if hloc = 1 then
  157.           if daycount < 10 then
  158.             put temp & " " & daycount into line row of background field month2
  159.           else
  160.             put temp & daycount into line row of background field month2
  161.           end if
  162.         else
  163.           if daycount < 10 then
  164.             put temp & "  " & daycount into line row of background field month2
  165.           else
  166.             put temp & " " & daycount into line row of background field month2
  167.           end if
  168.         end if
  169.         put (daycount + 1) into daycount
  170.         put (hloc + 1) into hloc
  171.       end repeat
  172.       put 1 into hloc
  173.       put (1 + row) into row
  174.       put 0 into firstmonth
  175.     end repeat
  176.     --- March
  177.     put 31 into daysmonth
  178.     if (yearvar MOD 4) =0 then
  179.       if (yearvar MOD 100) = 0 then
  180.         if (yearvar MOD 400) = 0 then
  181.           put (firstmonth2 + 29) into firstmonth
  182.         else
  183.           put (firstmonth2 + 28) into firstmonth
  184.         end if
  185.       else
  186.         put (firstmonth2 + 29) into firstmonth
  187.       end if
  188.     else
  189.       put (firstmonth2 + 28) into firstmonth
  190.     end if
  191.     put firstmonth into firstmonth2
  192.     repeat while firstmonth > 7
  193.       put (firstmonth - 7) into firstmonth
  194.     end repeat
  195.     put 1 into hloc
  196.     put 1 into daycount
  197.     put 1 into row
  198.     repeat while daycount < (daysmonth + 1)
  199.       repeat while hloc < firstmonth
  200.         get line row of background field month3
  201.         put it into temp
  202.         if hloc = 1 then
  203.           put temp & "  " into line row of background field month3
  204.         else
  205.           put temp & "   " into line row of background field month3
  206.         end if
  207.         put (1 + hloc) into hloc
  208.       end repeat
  209.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  210.         get line row of background field month3
  211.         put it into temp
  212.         if hloc = 1 then
  213.           if daycount < 10 then
  214.             put temp & " " & daycount into line row of background field month3
  215.           else
  216.             put temp & daycount into line row of background field month3
  217.           end if
  218.         else
  219.           if daycount < 10 then
  220.             put temp & "  " & daycount into line row of background field month3
  221.           else
  222.             put temp & " " & daycount into line row of background field month3
  223.           end if
  224.         end if
  225.         put (daycount + 1) into daycount
  226.         put (hloc + 1) into hloc
  227.       end repeat
  228.       put 1 into hloc
  229.       put (1 + row) into row
  230.       put 0 into firstmonth
  231.     end repeat
  232.     --- April
  233.     put 30 into daysmonth
  234.     put (firstmonth2 + 31) into firstmonth
  235.     put firstmonth into firstmonth2
  236.     repeat while firstmonth > 7
  237.       put (firstmonth - 7) into firstmonth
  238.     end repeat
  239.     put 1 into hloc
  240.     put 1 into daycount
  241.     put 1 into row
  242.     repeat while daycount < (daysmonth + 1)
  243.       repeat while hloc < firstmonth
  244.         get line row of background field month4
  245.         put it into temp
  246.         if hloc = 1 then
  247.           put temp & "  " into line row of background field month4
  248.         else
  249.           put temp & "   " into line row of background field month4
  250.         end if
  251.         put (1 + hloc) into hloc
  252.       end repeat
  253.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  254.         get line row of background field month4
  255.         put it into temp
  256.         if hloc = 1 then
  257.           if daycount < 10 then
  258.             put temp & " " & daycount into line row of background field month4
  259.           else
  260.             put temp & daycount into line row of background field month4
  261.           end if
  262.         else
  263.           if daycount < 10 then
  264.             put temp & "  " & daycount into line row of background field month4
  265.           else
  266.             put temp & " " & daycount into line row of background field month4
  267.           end if
  268.         end if
  269.         put (daycount + 1) into daycount
  270.         put (hloc + 1) into hloc
  271.       end repeat
  272.       put 1 into hloc
  273.       put (1 + row) into row
  274.       put 0 into firstmonth
  275.     end repeat
  276.     --- May
  277.     put 31 into daysmonth
  278.     put (firstmonth2 + 30) into firstmonth
  279.     put firstmonth into firstmonth2
  280.     repeat while firstmonth > 7
  281.       put (firstmonth - 7) into firstmonth
  282.     end repeat
  283.     put 1 into hloc
  284.     put 1 into daycount
  285.     put 1 into row
  286.     repeat while daycount < (daysmonth + 1)
  287.       repeat while hloc < firstmonth
  288.         get line row of background field month5
  289.         put it into temp
  290.         if hloc = 1 then
  291.           put temp & "  " into line row of background field month5
  292.         else
  293.           put temp & "   " into line row of background field month5
  294.         end if
  295.         put (1 + hloc) into hloc
  296.       end repeat
  297.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  298.         get line row of background field month5
  299.         put it into temp
  300.         if hloc = 1 then
  301.           if daycount < 10 then
  302.             put temp & " " & daycount into line row of background field month5
  303.           else
  304.             put temp & daycount into line row of background field month5
  305.           end if
  306.         else
  307.           if daycount < 10 then
  308.             put temp & "  " & daycount into line row of background field month5
  309.           else
  310.             put temp & " " & daycount into line row of background field month5
  311.           end if
  312.         end if
  313.         put (daycount + 1) into daycount
  314.         put (hloc + 1) into hloc
  315.       end repeat
  316.       put 1 into hloc
  317.       put (1 + row) into row
  318.       put 0 into firstmonth
  319.     end repeat
  320.     --- June
  321.     put 30 into daysmonth
  322.     put (firstmonth2 + 31) into firstmonth
  323.     put firstmonth into firstmonth2
  324.     repeat while firstmonth > 7
  325.       put (firstmonth - 7) into firstmonth
  326.     end repeat
  327.     put 1 into hloc
  328.     put 1 into daycount
  329.     put 1 into row
  330.     repeat while daycount < (daysmonth + 1)
  331.       repeat while hloc < firstmonth
  332.         get line row of background field month6
  333.         put it into temp
  334.         if hloc = 1 then
  335.           put temp & "  " into line row of background field month6
  336.         else
  337.           put temp & "   " into line row of background field month6
  338.         end if
  339.         put (1 + hloc) into hloc
  340.       end repeat
  341.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  342.         get line row of background field month6
  343.         put it into temp
  344.         if hloc = 1 then
  345.           if daycount < 10 then
  346.             put temp & " " & daycount into line row of background field month6
  347.           else
  348.             put temp & daycount into line row of background field month6
  349.           end if
  350.         else
  351.           if daycount < 10 then
  352.             put temp & "  " & daycount into line row of background field month6
  353.           else
  354.             put temp & " " & daycount into line row of background field month6
  355.           end if
  356.         end if
  357.         put (daycount + 1) into daycount
  358.         put (hloc + 1) into hloc
  359.       end repeat
  360.       put 1 into hloc
  361.       put (1 + row) into row
  362.       put 0 into firstmonth
  363.     end repeat
  364.     -- Clean Up
  365.     visual effect wipe left slowly
  366.     go to card months2
  367.     put empty into background field month1
  368.     put empty into background field month2
  369.     put empty into background field month3
  370.     put empty into background field month4
  371.     put empty into background field month5
  372.     put empty into background field month6
  373.     put yearvar into background field year
  374.     --- July
  375.     put 31 into daysmonth
  376.     put (firstmonth2 + 30) into firstmonth
  377.     put firstmonth into firstmonth2
  378.     repeat while firstmonth > 7
  379.       put (firstmonth - 7) into firstmonth
  380.     end repeat
  381.     put 1 into hloc
  382.     put 1 into daycount
  383.     put 1 into row
  384.     repeat while daycount < (daysmonth + 1)
  385.       repeat while hloc < firstmonth
  386.         get line row of background field month1
  387.         put it into temp
  388.         if hloc = 1 then
  389.           put temp & "  " into line row of background field month1
  390.         else
  391.           put temp & "   " into line row of background field month1
  392.         end if
  393.         put (1 + hloc) into hloc
  394.       end repeat
  395.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  396.         get line row of background field month1
  397.         put it into temp
  398.         if hloc = 1 then
  399.           if daycount < 10 then
  400.             put temp & " " & daycount into line row of background field month1
  401.           else
  402.             put temp & daycount into line row of background field month1
  403.           end if
  404.         else
  405.           if daycount < 10 then
  406.             put temp & "  " & daycount into line row of background field month1
  407.           else
  408.             put temp & " " & daycount into line row of background field month1
  409.           end if
  410.         end if
  411.         put (daycount + 1) into daycount
  412.         put (hloc + 1) into hloc
  413.       end repeat
  414.       put 1 into hloc
  415.       put (1 + row) into row
  416.       put 0 into firstmonth
  417.     end repeat
  418.     --- August
  419.     put 31 into daysmonth
  420.     put (firstmonth2 + 31) into firstmonth
  421.     put firstmonth into firstmonth2
  422.     repeat while firstmonth > 7
  423.       put (firstmonth - 7) into firstmonth
  424.     end repeat
  425.     put 1 into hloc
  426.     put 1 into daycount
  427.     put 1 into row
  428.     repeat while daycount < (daysmonth + 1)
  429.       repeat while hloc < firstmonth
  430.         get line row of background field month2
  431.         put it into temp
  432.         if hloc = 1 then
  433.           put temp & "  " into line row of background field month2        else
  434.           put temp & "   " into line row of background field month2
  435.         end if
  436.         put (1 + hloc) into hloc
  437.       end repeat
  438.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  439.         get line row of background field month2
  440.         put it into temp
  441.         if hloc = 1 then
  442.           if daycount < 10 then
  443.             put temp & " " & daycount into line row of background field month2
  444.           else
  445.             put temp & daycount into line row of background field month2
  446.           end if
  447.         else
  448.           if daycount < 10 then
  449.             put temp & "  " & daycount into line row of background field month2
  450.           else
  451.             put temp & " " & daycount into line row of background field month2
  452.           end if
  453.         end if
  454.         put (daycount + 1) into daycount
  455.         put (hloc + 1) into hloc
  456.       end repeat
  457.       put 1 into hloc
  458.       put (1 + row) into row
  459.       put 0 into firstmonth
  460.     end repeat
  461.     --- September
  462.     put 30 into daysmonth
  463.     put (firstmonth2 + 31) into firstmonth
  464.     put firstmonth into firstmonth2
  465.     repeat while firstmonth > 7
  466.       put (firstmonth - 7) into firstmonth
  467.     end repeat
  468.     put 1 into hloc
  469.     put 1 into daycount
  470.     put 1 into row
  471.     repeat while daycount < (daysmonth + 1)
  472.       repeat while hloc < firstmonth
  473.         get line row of background field month3
  474.         put it into temp
  475.         if hloc = 1 then
  476.           put temp & "  " into line row of background field month3
  477.         else
  478.           put temp & "   " into line row of background field month3
  479.         end if
  480.         put (1 + hloc) into hloc
  481.       end repeat
  482.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  483.         get line row of background field month3
  484.         put it into temp
  485.         if hloc = 1 then
  486.           if daycount < 10 then
  487.             put temp & " " & daycount into line row of background field month3
  488.           else
  489.             put temp & daycount into line row of background field month3
  490.           end if
  491.         else
  492.           if daycount < 10 then
  493.             put temp & "  " & daycount into line row of background field month3
  494.           else
  495.             put temp & " " & daycount into line row of background field month3
  496.           end if
  497.         end if
  498.         put (daycount + 1) into daycount
  499.         put (hloc + 1) into hloc
  500.       end repeat
  501.       put 1 into hloc
  502.       put (1 + row) into row
  503.       put 0 into firstmonth
  504.     end repeat
  505.     --- October
  506.     put 31 into daysmonth
  507.     put (firstmonth2 + 30) into firstmonth
  508.     put firstmonth into firstmonth2
  509.     repeat while firstmonth > 7
  510.       put (firstmonth - 7) into firstmonth
  511.     end repeat
  512.     put 1 into hloc
  513.     put 1 into daycount
  514.     put 1 into row
  515.     repeat while daycount < (daysmonth + 1)
  516.       repeat while hloc < firstmonth
  517.         get line row of background field month4
  518.         put it into temp
  519.         if hloc = 1 then
  520.           put temp & "  " into line row of background field month4
  521.         else
  522.           put temp & "   " into line row of background field month4
  523.         end if
  524.         put (1 + hloc) into hloc
  525.       end repeat
  526.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  527.         get line row of background field month4
  528.         put it into temp
  529.         if hloc = 1 then
  530.           if daycount < 10 then
  531.             put temp & " " & daycount into line row of background field month4
  532.           else
  533.             put temp & daycount into line row of background field month4
  534.           end if
  535.         else
  536.           if daycount < 10 then
  537.             put temp & "  " & daycount into line row of background field month4
  538.           else
  539.             put temp & " " & daycount into line row of background field month4
  540.           end if
  541.         end if
  542.         put (daycount + 1) into daycount
  543.         put (hloc + 1) into hloc
  544.       end repeat
  545.       put 1 into hloc
  546.       put (1 + row) into row
  547.       put 0 into firstmonth
  548.     end repeat
  549.     --- November
  550.     put 30 into daysmonth
  551.     put (firstmonth2 + 31) into firstmonth
  552.     put firstmonth into firstmonth2
  553.     repeat while firstmonth > 7
  554.       put (firstmonth - 7) into firstmonth
  555.     end repeat
  556.     put 1 into hloc
  557.     put 1 into daycount
  558.     put 1 into row
  559.     repeat while daycount < (daysmonth + 1)
  560.       repeat while hloc < firstmonth
  561.         get line row of background field month5
  562.         put it into temp
  563.         if hloc = 1 then
  564.           put temp & "  " into line row of background field month5
  565.         else
  566.           put temp & "   " into line row of background field month5
  567.         end if
  568.         put (1 + hloc) into hloc
  569.       end repeat
  570.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  571.         get line row of background field month5
  572.         put it into temp
  573.         if hloc = 1 then
  574.           if daycount < 10 then
  575.             put temp & " " & daycount into line row of background field month5
  576.           else
  577.             put temp & daycount into line row of background field month5
  578.           end if
  579.         else
  580.           if daycount < 10 then
  581.             put temp & "  " & daycount into line row of background field month5
  582.           else
  583.             put temp & " " & daycount into line row of background field month5
  584.           end if
  585.         end if
  586.         put (daycount + 1) into daycount
  587.         put (hloc + 1) into hloc
  588.       end repeat
  589.       put 1 into hloc
  590.       put (1 + row) into row
  591.       put 0 into firstmonth
  592.     end repeat
  593.     --- December
  594.     put 31 into daysmonth
  595.     put (firstmonth2 + 30) into firstmonth
  596.     put firstmonth into firstmonth2
  597.     repeat while firstmonth > 7
  598.       put (firstmonth - 7) into firstmonth
  599.     end repeat
  600.     put 1 into hloc
  601.     put 1 into daycount
  602.     put 1 into row
  603.     repeat while daycount < (daysmonth + 1)
  604.       repeat while hloc < firstmonth
  605.         get line row of background field month6
  606.         put it into temp
  607.         if hloc = 1 then
  608.           put temp & "  " into line row of background field month6
  609.         else
  610.           put temp & "   " into line row of background field month6
  611.         end if
  612.         put (1 + hloc) into hloc
  613.       end repeat
  614.       repeat while (hloc < 8) and (daycount < (daysmonth + 1))
  615.         get line row of background field month6
  616.         put it into temp
  617.         if hloc = 1 then
  618.           if daycount < 10 then
  619.             put temp & " " & daycount into line row of background field month6
  620.           else
  621.             put temp & daycount into line row of background field month6
  622.           end if
  623.         else
  624.           if daycount < 10 then
  625.             put temp & "  " & daycount into line row of background field month6
  626.           else
  627.             put temp & " " & daycount into line row of background field month6
  628.           end if
  629.         end if
  630.         put (daycount + 1) into daycount
  631.         put (hloc + 1) into hloc
  632.       end repeat
  633.       put 1 into hloc
  634.       put (1 + row) into row
  635.       put 0 into firstmonth
  636.     end repeat
  637.     ---
  638.   end if
  639. end mouseUp
  640.  
  641.  
  642. -- part 9 (field)
  643. -- low flags: 00
  644. -- high flags: 0002
  645. -- rect: left=20 top=105 right=179 bottom=168
  646. -- title width / last selected line: 0
  647. -- icon id / first selected line: 0 / 0
  648. -- text alignment: 0
  649. -- font id: 4
  650. -- text size: 9
  651. -- style flags: 256
  652. -- line height: 12
  653. -- part name: month1
  654.  
  655.  
  656. -- part 13 (field)
  657. -- low flags: 00
  658. -- high flags: 0002
  659. -- rect: left=186 top=105 right=179 bottom=334
  660. -- title width / last selected line: 0
  661. -- icon id / first selected line: 0 / 0
  662. -- text alignment: 0
  663. -- font id: 4
  664. -- text size: 9
  665. -- style flags: 256
  666. -- line height: 12
  667. -- part name: month2
  668.  
  669.  
  670. -- part 14 (field)
  671. -- low flags: 00
  672. -- high flags: 0002
  673. -- rect: left=350 top=105 right=179 bottom=498
  674. -- title width / last selected line: 0
  675. -- icon id / first selected line: 0 / 0
  676. -- text alignment: 0
  677. -- font id: 4
  678. -- text size: 9
  679. -- style flags: 256
  680. -- line height: 12
  681. -- part name: month3
  682.  
  683.  
  684. -- part 15 (field)
  685. -- low flags: 00
  686. -- high flags: 0002
  687. -- rect: left=20 top=216 right=290 bottom=168
  688. -- title width / last selected line: 0
  689. -- icon id / first selected line: 0 / 0
  690. -- text alignment: 0
  691. -- font id: 4
  692. -- text size: 9
  693. -- style flags: 256
  694. -- line height: 12
  695. -- part name: month4
  696.  
  697.  
  698. -- part 16 (field)
  699. -- low flags: 00
  700. -- high flags: 0002
  701. -- rect: left=186 top=216 right=290 bottom=334
  702. -- title width / last selected line: 0
  703. -- icon id / first selected line: 0 / 0
  704. -- text alignment: 0
  705. -- font id: 4
  706. -- text size: 9
  707. -- style flags: 256
  708. -- line height: 12
  709. -- part name: month5
  710.  
  711.  
  712. -- part 17 (field)
  713. -- low flags: 00
  714. -- high flags: 0002
  715. -- rect: left=350 top=216 right=290 bottom=498
  716. -- title width / last selected line: 0
  717. -- icon id / first selected line: 0 / 0
  718. -- text alignment: 0
  719. -- font id: 4
  720. -- text size: 9
  721. -- style flags: 256
  722. -- line height: 12
  723. -- part name: month6
  724.  
  725.  
  726. -- part 18 (button)
  727. -- low flags: 00
  728. -- high flags: A003
  729. -- rect: left=18 top=320 right=341 bottom=176
  730. -- title width / last selected line: 0
  731. -- icon id / first selected line: 0 / 0
  732. -- text alignment: 1
  733. -- font id: 0
  734. -- text size: 12
  735. -- style flags: 0
  736. -- line height: 16
  737. -- part name: More Info
  738. ----- HyperTalk script -----
  739. on mouseUp
  740.   visual effect iris close
  741.   go to first card
  742. end mouseUp
  743.  
  744.